home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0295.lzh / AMOSLIST / text0258.txt < prev    next >
Encoding:
Text File  |  1995-03-01  |  2.3 KB  |  79 lines

  1. On mon, 27 Feb 1995 PeTrI pIeTiKaInEn wrote:
  2.  
  3. > Me and our crew are working on a musicdisk now and i thought it would be 
  4. > nice to make it with AMOS but i am a beginner in AMOS, so here's a question:
  5. > Is there any way to get all stuff (mods, graphics..etc..) in one file? 
  6. > And if it's possible, what extensions do i need?
  7.  
  8. HI!
  9.  
  10. Well, first of all you don't need any extension! 
  11. Second, You use the banks wich is included in Amos and AmosPro!
  12. (If you're using Amos, then you only have 16 banks to use, if you're
  13. using AmosPro then you have 65535 banks to use!:-))
  14.  
  15. You can use which bank you want, but the first three are always used 
  16. by Amos! I don't remember in wich order but the first is used by 
  17. sprites, second ??? and if im not wrong the 3:rd is for amos music 
  18. extension...
  19.  
  20. For use amos music ext. then you'll have to use amos music converter!
  21.  
  22. Ok here we go:
  23.  
  24. 1) Load all your graphics, mods etc. into Amos Banks and compile the 
  25. amosprogram with all banks included
  26. Then you'll have an file with all graphics, mods etc. in it!! :-)
  27. OBS!!!
  28. Don't use ERASE ALL in direct mode before you're saveing you're 
  29. amosprogram, If you do, then amos saves without any load gfx, mods etc
  30.  
  31. 2) You can load all gfx from disk with load command and put them to 
  32. wich bank you want!
  33.  
  34. Here's an little ex:
  35.  
  36. Screen open 0,320,256,32,L : Rem 32 colourd lowres screen...
  37.  
  38. Curs off: flash off: cls 0 
  39.  
  40. Load Iff "<Gfx name>",0 (Depending on wich screens are open)
  41.  
  42. Rem If you want, you can pack screens to a bank!
  43.  
  44. Spack 0 to 6 (=bank 6, or what bank you'll want after bank three)
  45. (This is if you're not using any extension!)
  46.  
  47. Unpack 6 to 0 (Now you have the gfx in bank 6)
  48. Now you have unpacked the pic to screen 0
  49. If you want more pic in you're banks, go up to load iff and change
  50. Spack 0 to <another bank number>.
  51.  
  52. Load "<music name>",3 (Amos music bank)
  53.  
  54. (If there are music, put them want bank you'll like, and use 
  55. Swap Bank (new amos music bank),3 
  56.  
  57. Music 1: rem Turn on music.
  58.  
  59.  
  60.  
  61. This is just an simple way to go.... hope you'll understand what i 
  62. wrote! If not, mail me, and i try to spell it in another way!
  63.  
  64.  
  65. Amos is making programing fun!
  66.  
  67. Marco E.
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74. *********************************************************************
  75. * Email: SA437@UTB.SHV.HB.SE   !When you are mad, count to 10! :-)) * 
  76. *********************************************************************
  77.  
  78.